home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Documentation / Books / Learn Java on the Macintosh / Learn Java Projects / 02.01 - hello, world / HelloWorld.java < prev    next >
Text File  |  1996-04-22  |  449b  |  17 lines

  1. /* -------------------------------------------------------------
  2. This displays "Hello, world!" when it repaints.
  3.  
  4. Java's classes: Applet    (applet)
  5.                 Graphics  (awt)     used for drawing
  6.  
  7. Custom classes: HelloWorld
  8.  
  9. ------------------------------------------------------------- */
  10. public class HelloWorld extends java.applet.Applet {
  11.  
  12.    public void paint(java.awt.Graphics g) {
  13.       g.drawString("Hello, world!", 100 , 25);
  14.    }
  15.  
  16. }
  17.